From: Lars Magne Ingebrigtsen Date: Sun, 26 Sep 2010 15:30:44 +0000 (+0200) Subject: (starttls-negotiate): Avoid the cl.el decf function. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~6413 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=28d9eea3a0133a95ea67f7822828f52667ab5fab;p=emacs.git (starttls-negotiate): Avoid the cl.el decf function. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5705a9fc5e6..1e0b773e42e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-09-26 Lars Magne Ingebrigtsen + * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function. + * net/netrc.el (netrc-store-data): New function. 2010-09-26 Teodor Zlatanov diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index b4fa4f08385..7a2571f8a7c 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -82,7 +82,7 @@ CREDENTIALS-FILE is a filename with meaning dependent on CREDENTIALS." (n 25000)) (while (and (not (gnutls-error-fatalp ret)) (> n 0)) - (decf n) + (setq n (1- n)) (gnutls-message-maybe (setq ret (gnutls-handshake proc)) "handshake: %s")